summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl/ssl_backend_none.cpp
blob: eb01561e244011e0c8cafa6146f7610489b12af4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/ssl/ssl_backend.h"

#include "common/logging/log.h"

namespace Service::SSL {

ResultVal<std::unique_ptr<SSLConnectionBackend>> CreateSSLConnectionBackend() {
    LOG_ERROR(Service_SSL, "No SSL backend on this platform");
    return ResultInternalError;
}

} // namespace Service::SSL